open-law/tsconfig.json

18 lines
440 B
JSON
Raw Permalink Normal View History

2023-04-20 13:10:16 +00:00
{
"compilerOptions": {
"lib": ["dom", "es2015"],
"outDir": "./app/static/js/",
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"allowJs": true,
2023-05-29 13:10:38 +00:00
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2023-04-20 13:10:16 +00:00
},
"include": ["src/**/*.ts*"],
2023-04-20 13:10:16 +00:00
"exclude": ["node_modules", "dist", "lib"]
}