Commit | Line | Data |
---|---|---|
4ade5f1f | 1 | { |
3b2bd93d | 2 | "$schema": "https://json.schemastore.org/tsconfig", |
4ade5f1f | 3 | "compilerOptions": { |
54541487 | 4 | "target": "ES2022", |
6d0425b4 | 5 | "module": "ES2022", |
23ccf9d7 | 6 | "moduleResolution": "Node", |
b5604034 | 7 | "typeRoots": ["./node_modules/@types", "./@types"], |
ee99693b | 8 | "declaration": true, |
78cdf6bc | 9 | "declarationDir": "./lib/dts", |
23ccf9d7 | 10 | "strict": true, |
1c881a97 | 11 | "verbatimModuleSyntax": true, |
23ccf9d7 | 12 | "forceConsistentCasingInFileNames": true |
4ade5f1f | 13 | }, |
b869248d JB |
14 | "include": ["**/*.ts"], |
15 | "exclude": ["node_modules", "lib"] | |
4ade5f1f | 16 | } |