mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
17 lines
444 B
JSON
17 lines
444 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2016",
|
||
|
"module": "commonjs",
|
||
|
"esModuleInterop": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true,
|
||
|
"outDir": "./dist",
|
||
|
"baseUrl": "./src",
|
||
|
"moduleResolution": "node",
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true
|
||
|
},
|
||
|
"include": ["src/**/*.ts"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|