rtmc-be/tsconfig.json

22 lines
553 B
JSON
Raw Normal View History

2024-08-27 22:10:18 +00:00
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"typeRoots": ["./node_modules/@types", "./src/types"],
"strict": true,
"target": "ESNext",
2024-08-28 03:42:21 +00:00
"module": "CommonJS",
"moduleResolution": "node",
2024-08-27 22:10:18 +00:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"types": [""],
"isolatedModules": true,
"noImplicitAny": true,
"alwaysStrict": true,
2024-08-28 03:42:21 +00:00
"outDir": "./build/",
2024-08-27 22:10:18 +00:00
},
"include": [
"src/**/*.ts",
]
}