Mirror of https://github.com/roostorg/coop-integration-example
github.com/roostorg/coop-integration-example
1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "NodeNext",
5 "moduleResolution": "NodeNext",
6 "outDir": "./dist",
7 "rootDir": "./src",
8 "declaration": true,
9 "strict": true,
10 "skipLibCheck": true,
11 "esModuleInterop": true,
12 "forceConsistentCasingInFileNames": true
13 },
14 "include": ["src/**/*.ts"],
15 "exclude": ["node_modules", "dist"]
16}