platform/dev/prod/tsconfig.json

18 lines
344 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
"module": "esnext",
"target": "es2021",
"allowJs": true,
"sourceMap": true,
"skipLibCheck": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"lib": [
"es2016",
"dom",
"ES2021.String"
]
}
}