51 lines
		
	
	
		
			1016 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1016 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
| {
 | |
|   "compilerOptions": {
 | |
|     "target": "ES2022",
 | |
|     "experimentalDecorators": true,
 | |
|     "useDefineForClassFields": false,
 | |
|     "module": "ESNext",
 | |
|     "lib": [
 | |
|       "ES2022",
 | |
|       "DOM",
 | |
|       "DOM.Iterable"
 | |
|     ],
 | |
|     "skipLibCheck": true,
 | |
|     "esModuleInterop": true,
 | |
|     "allowSyntheticDefaultImports": true,
 | |
|     "types": [
 | |
|       "node",
 | |
|       "jest"
 | |
|     ],
 | |
|     "moduleResolution": "bundler",
 | |
|     "isolatedModules": true,
 | |
|     "moduleDetection": "force",
 | |
|     "allowJs": true,
 | |
|     "jsx": "react-jsx",
 | |
|     "typeRoots": [
 | |
|       "./src/types",
 | |
|       "./node_modules/@types"
 | |
|     ],
 | |
|     "paths": {
 | |
|       "@/*": [
 | |
|         "./*"
 | |
|       ]
 | |
|     }
 | |
|   },
 | |
|   "include": [
 | |
|     "./index.tsx",
 | |
|     "./src/**/*.ts",
 | |
|     "./src/**/*.tsx",
 | |
|     "./src/**/*.d.ts",
 | |
|     "./web-components/**/*.ts",
 | |
|     "./web-components/**/*.tsx",
 | |
|     "./web-components/**/*.d.ts"
 | |
|   ],
 | |
|   "exclude": [
 | |
|     "node_modules",
 | |
|     "./src/**/*.spec.ts",
 | |
|     "./src/**/*.spec.tsx"
 | |
|   ],
 | |
|   "angularCompilerOptions": {
 | |
|     "disableTypeScriptVersionCheck": true
 | |
|   }
 | |
| } |