0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-11-29 08:32:05 +01:00
svelte/tsconfig.json

19 lines
366 B
JSON
Raw Normal View History

2017-05-07 01:43:33 +02:00
{
2017-05-07 03:54:28 +02:00
"compilerOptions": {
2018-03-19 18:57:42 +01:00
"target": "ES6",
2017-05-07 03:54:28 +02:00
"diagnostics": true,
"noImplicitThis": true,
2017-05-07 04:52:37 +02:00
"noEmitOnError": true,
"allowJs": true,
"lib": ["es5", "es6", "dom"],
2018-04-22 21:55:37 +02:00
"importHelpers": true,
"moduleResolution": "node"
2017-05-07 03:54:28 +02:00
},
2017-05-07 04:31:31 +02:00
"include": [
"src"
2017-05-07 04:31:31 +02:00
],
"exclude": [
"node_modules"
]
2017-05-26 12:24:56 +02:00
}