12345678910111213141516171819202122 |
- {
- "ts-node": {
- "files": true
- },
- "compilerOptions": {
- "target": "es2020",
- "module": "commonjs",
- "outDir": "./lib",
- "rootDir": "./src",
- "declaration": true,
- "strict": true,
- "esModuleInterop": true,
- "sourceMap": true,
- "skipLibCheck": true
- },
- "include": [
- "src"
- ],
- "exclude": [
- "test"
- ]
- }
|