mtcute/tsconfig.json

35 lines
844 B
JSON
Raw Normal View History

2021-04-08 12:19:38 +03:00
{
"compilerOptions": {
"outDir": "./dist",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "es2020",
2021-04-08 12:19:38 +03:00
"allowJs": true,
"sourceMap": true,
"inlineSources": true,
"declaration": true,
"esModuleInterop": true,
2023-06-12 23:28:30 +03:00
"allowSyntheticDefaultImports": true,
"strict": true,
2021-04-08 12:19:38 +03:00
"noImplicitAny": true,
"noImplicitThis": true,
2021-04-08 12:19:38 +03:00
"incremental": true,
"stripInternal": true,
"skipLibCheck": true,
"paths": {
2023-09-05 00:19:47 +03:00
"~scripts/*": ["./scripts/*"],
},
"composite": true
2021-04-08 12:19:38 +03:00
},
"ts-node": {
"require": [
"tsconfig-paths/register"
],
"esm": true,
"experimentalSpecifierResolution": "node"
},
2021-04-08 12:19:38 +03:00
"exclude": [
2023-09-21 00:47:57 +03:00
"**/node_modules",
2021-04-08 12:19:38 +03:00
]
}