flashlang/tsconfig.json

12 lines
237 B
JSON
Raw Normal View History

2020-07-19 22:40:30 +02:00
{
2020-08-10 00:37:38 +02:00
"extends": "@tsconfig/svelte/tsconfig.json",
2020-07-19 23:02:47 +02:00
"compilerOptions": {
"outDir": "./dist/",
"noImplicitAny": true,
2020-08-12 00:03:02 +02:00
"target": "ES6",
"strict": true
2020-08-10 00:37:38 +02:00
},
"include": ["src/**/*", "src/node_modules"],
"exclude": ["node_modules/*"]
2020-07-19 23:02:47 +02:00
}