mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2024-11-15 03:55:41 +08:00
18 lines
439 B
JSON
18 lines
439 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"isolatedModules": true,
|
||
|
"module": "ESNext", //TODO CommonJS
|
||
|
"moduleResolution": "Bundler", //TODO remove?
|
||
|
"preserveWatchOutput": true,
|
||
|
"skipLibCheck": true,
|
||
|
"strict": true,
|
||
|
"rootDir": ".",
|
||
|
"outDir": "dist",
|
||
|
"types": ["node"],
|
||
|
"declaration": true
|
||
|
},
|
||
|
"exclude": ["node_modules", "./dist/**/*"]
|
||
|
}
|