1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "nodenext",
- "moduleResolution": "nodenext",
- "allowJs": false,
- "declaration": true,
- "sourceRoot": "",
- "outDir": "./lib",
- "strict": true,
- "rootDir": "./src",
- "types": ["node", "mocha", "chai"],
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "checkJs": false,
- "stripInternal": true,
- "exactOptionalPropertyTypes": true
- },
- "ts-node": {
- "transpileOnly": true
- }
- }
|