-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
34 lines (34 loc) · 1.04 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"incremental": false,
"noImplicitAny": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"moduleResolution": "Node",
"target": "ES2020",
"module": "CommonJS",
"skipLibCheck": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"strictBindCallApply": true,
"lib": ["dom", "esnext"],
"paths": {
"@pixi/storybook-renderer": ["packages/storybook-renderer/src"],
"@pixi/storybook-preset-vite": ["packages/storybook-preset-vite/src"],
"@pixi/storybook-preset-webpack": ["packages/storybook-preset-webpack/src"],
"@pixi/storybook-vite": ["packages/storybook-vite/src"],
"@pixi/storybook-webpack5": ["packages/storybook-webpack5/src"],
}
},
"exclude": ["dist", "**/dist", "node_modules", "**/node_modules", "**/setup-jest.ts"],
"ts-node": {
"transpileOnly": true,
"files": true,
"compilerOptions": {
"types": ["node"]
}
}
}