wisemapping-frontend/packages/mindplot/tsconfig.json

23 lines
401 B
JSON
Raw Normal View History

2022-01-25 19:10:40 +01:00
{
"compilerOptions": {
"outDir": "./dist/",
"sourceMap": true,
"noImplicitAny": false,
2022-01-30 11:37:14 +01:00
"module": "amd",
"moduleResolution": "node",
2022-02-12 08:11:59 +01:00
"target": "ES2020",
2022-01-25 19:10:40 +01:00
"allowJs": true,
2022-01-26 07:33:39 +01:00
"esModuleInterop": true,
2022-11-02 00:31:33 +01:00
"resolveJsonModule": true,
2022-01-30 11:37:14 +01:00
"declaration": true,
2022-01-26 07:33:39 +01:00
"rootDirs": [
"src",
]
2022-01-25 19:10:40 +01:00
},
2022-01-30 11:37:14 +01:00
"include": [
"src/**/*",
],
2022-01-30 11:37:14 +01:00
"exclude": [
"node_modules"
]
2022-01-25 19:10:40 +01:00
}