46 lines
		
	
	
		
			852 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
		
		
			
		
	
	
			46 lines
		
	
	
		
			852 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
|  | { | ||
|  |   "compilerOptions": { | ||
|  |     "target": "esnext", | ||
|  |     "module": "esnext", | ||
|  |     "strict": true, | ||
|  |     "jsx": "preserve", | ||
|  |     "importHelpers": true, | ||
|  |     "moduleResolution": "node", | ||
|  |     "experimentalDecorators": true, | ||
|  |     "skipLibCheck": true, | ||
|  |     "esModuleInterop": true, | ||
|  |     "allowSyntheticDefaultImports": true, | ||
|  |     "suppressImplicitAnyIndexErrors":true, | ||
|  |     "sourceMap": true, | ||
|  |     "outDir": ".js", | ||
|  |     "baseUrl": ".", | ||
|  |     "types": [ | ||
|  |       "node", | ||
|  |       "webpack-env", | ||
|  |     ], | ||
|  |     "typeRoots": ["node_modules/@types", "typings"], | ||
|  |     "paths": { | ||
|  |       "@/*": [ | ||
|  |         "src/*" | ||
|  |       ], | ||
|  |       "config": [ | ||
|  |         "config/index.js" | ||
|  |       ] | ||
|  |     }, | ||
|  |     "lib": [ | ||
|  |       "esnext", | ||
|  |       "dom", | ||
|  |       "dom.iterable", | ||
|  |       "scripthost" | ||
|  |     ] | ||
|  |   }, | ||
|  |   "include": [ | ||
|  |     "src/**/*.ts", | ||
|  |     "src/**/*.tsx", | ||
|  |     "src/**/*.vue", | ||
|  |   ], | ||
|  |   "exclude": [ | ||
|  |     "node_modules" | ||
|  |   ] | ||
|  | } |