This repository has no description
446 B
18 lines
1{
2 "compilerOptions": {
3 "target": "ES2020",
4 "module": "commonjs",
5 "lib": ["ES2020"],
6 "outDir": "./dist",
7 "rootDir": "./src",
8 "strict": true,
9 "esModuleInterop": true,
10 "skipLibCheck": true,
11 "forceConsistentCasingInFileNames": true,
12 "declaration": true,
13 "declarationMap": true,
14 "sourceMap": true
15 },
16 "include": ["src/**/*"],
17 "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
18}