You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/tsconfig.json

32 lines
640 B

{
"include": [],
"compilerOptions": {
"rootDirs": ["src", "test"],
// target node v8+ (https://node.green/)
// the only missing feature is Array.prototype.values
"lib": ["ES2017"],
"target": "ES2017",
"skipLibCheck": true,
"declaration": true,
"declarationDir": "types",
"noEmitOnError": true,
"noErrorTruncation": true,
// rollup takes care of these
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
// TODO: error all the things
//"strict": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true
}
}