Cosmos-Server/tsconfig.json

27 lines
645 B
JSON
Raw Normal View History

2023-12-02 10:14:52 +00:00
{
"compilerOptions": {
"outDir": "client/dist",
2023-12-02 13:45:10 +00:00
"lib": [
"dom",
"dom.iterable",
"esnext"
],
2023-12-02 10:14:52 +00:00
"noImplicitAny": true,
"module": "es6",
"target": "es6",
"jsx": "react",
"allowJs": true,
"moduleResolution": "node",
"rootDir": "client/src",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
2023-12-02 10:14:52 +00:00
},
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
},
2023-12-02 10:14:52 +00:00
"include": ["client/src/**/*"],
"exclude": ["client/**/*.demo*"]
}