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

31 lines
579 B

{
"include": [],
"compilerOptions": {
"rootDirs": ["src", "test"],
"lib": ["ES2020", "DOM"],
"target": "ES2020",
"skipLibCheck": true,
"declaration": true,
"declarationDir": "types",
"strictBindCallApply": true,
"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
}
}