miiverse-api/tsconfig.json

21 lines
404 B
JSON
Raw Permalink Normal View History

2023-04-21 10:07:54 -04:00
{
"compilerOptions": {
"strict": true,
2023-07-17 19:34:57 -04:00
"sourceMap": true,
2023-04-21 10:07:54 -04:00
"resolveJsonModule": true,
"module": "commonjs",
"esModuleInterop": true,
"moduleResolution": "node",
"baseUrl": "src",
"outDir": "dist",
"allowJs": true,
"target": "es2022",
"noEmitOnError": true,
"noImplicitAny": true,
"strictPropertyInitialization": true,
2023-04-21 10:07:54 -04:00
"paths": {
"@/*": ["./*"]
}
},
"include": ["src"]
}