2023-02-10 17:26:28 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "commonjs",
|
|
|
|
"strict": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"newLine": "LF",
|
|
|
|
"sourceMap": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
// to enable mobx decorators
|
|
|
|
"useDefineForClassFields": false
|
|
|
|
},
|
2023-02-23 00:39:35 +08:00
|
|
|
"include": ["src/**/*", "./node_modules/monaco-editor/monaco.d.ts"]
|
2023-02-10 17:26:28 +08:00
|
|
|
}
|