17 lines
430 B
JSON
17 lines
430 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
/* Emit the generated JS into build/app */
|
|
"outDir": "build/app",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"*": ["node_modules/*"]
|
|
}
|
|
},
|
|
/* Transpile all ts files in src/ */
|
|
"include": ["src/**/*.ts"]
|
|
}
|