mtcute/tsconfig.json

37 lines
836 B
JSON
Raw Normal View History

2021-04-08 12:19:38 +03:00
{
"compilerOptions": {
"outDir": "./dist",
2021-04-08 12:19:38 +03:00
"module": "commonjs",
"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/*"],
},
"typeRoots": [
"./node_modules/@types",
"./tsfixes.d.ts"
]
2021-04-08 12:19:38 +03:00
},
"ts-node": {
"require": [
"tsconfig-paths/register"
]
},
2021-04-08 12:19:38 +03:00
"exclude": [
"private",
"node_modules",
"dist"
2021-04-08 12:19:38 +03:00
]
}