mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-10 17:04:49 +08:00
4b3059bdc7
* impr: Import shared types back into MonkeyTypes namespace, partially reverts #4769 * down to 6 errors * fixes * cleanup
29 lines
601 B
JSON
29 lines
601 B
JSON
{
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"module": "commonjs",
|
|
"target": "es6",
|
|
"sourceMap": false,
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"outDir": "build",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"strictNullChecks": true,
|
|
"skipLibCheck": false
|
|
},
|
|
"ts-node": {
|
|
"files": true
|
|
},
|
|
"files": ["./src/types/types.d.ts"],
|
|
"include": ["./src/**/*"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"build",
|
|
"worker.js",
|
|
"setup-tests.ts",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|