Mirror of https://github.com/roostorg/coop
github.com/roostorg/coop
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "NodeNext",
5 "moduleResolution": "NodeNext",
6 "lib": ["ES2022"],
7 "outDir": "./transpiled",
8 "declaration": true,
9 "strict": true,
10 "esModuleInterop": true,
11 "forceConsistentCasingInFileNames": true,
12 "noImplicitOverride": true,
13 "noUnusedLocals": false,
14 "noUnusedParameters": false,
15 "noImplicitReturns": true,
16 "noFallthroughCasesInSwitch": true,
17 "allowJs": true,
18 "typeRoots": ["./node_modules/@types"]
19 },
20 "include": ["./**/*.ts", "./**/*.cts", "./**/*.mts"],
21 "exclude": ["node_modules", "package.json", "package-lock.json", "transpiled"]
22}